home *** CD-ROM | disk | FTP | other *** search
/ Gear Audio / Gear Audio CD-ROM.iso / csav / mailcommand / smtp.z / AUTHFILE.TXT next >
Encoding:
Text File  |  1999-02-11  |  1.4 KB  |  67 lines

  1. ;
  2. ;  Example AMUcheck Authorisation file for MIMEsweeper SMTP.
  3. ;
  4. POLICY allow RETURNS 0
  5. POLICY deny RETURNS 1
  6. POLICY isjunkmail RETURNS 2
  7. POLICY copyadministrator RETURNS 3
  8. POLICY allow_in RETURNS 4
  9. POLICY allow_out RETURNS 5
  10.  
  11. ;
  12. ; A default rule which allows everything.
  13. ;
  14. FROM *@* TO *@* allow
  15.  
  16. ;
  17. ; Spot messages that are entering the company.
  18. ;
  19. FROM *@* TO *@this-company.com allow_in
  20.  
  21. ;
  22. ; Spot messages leaving the company.
  23. ;
  24. FROM *@this-company.com To *@* allow_out
  25.  
  26. ;
  27. ; Everything from annoying company is junk mail.
  28. ;
  29. FROM *@annoying-company.com TO *@* isjunkmail
  30.  
  31. ;
  32. ; Deny any one in the sales sub domain from receiving mail.
  33. ;
  34. FROM *@* TO *@sales.this-company.com deny
  35.  
  36. ;
  37. ; Copy any mail sent to the header hunter at the agency to the administrator.
  38. ;
  39. FROM *@* To head.hunter@agency.com copyadministrator
  40.  
  41. ;
  42. ; Deny Oliver Daly at this company to send mail to Fred Little at other company.
  43. ;
  44. FROM oliver.daly@this-company.com
  45. TO fred.little@other-company.com deny
  46.  
  47. ;
  48. ; Deny anyone sending mail to the competition.
  49. ;
  50. FROM *@* TO *@competition1.com deny *@competition2.com deny
  51.  
  52. ;
  53. ; Allow the managing and technical directors to communicate with competition
  54. ; overriding the above rule.
  55. ;
  56. FROM
  57.      managing.director@this-company.com
  58.      technical.director@this-company.com
  59. TO
  60.      *@competition1.com allow
  61.      *@competition2.com allow
  62.  
  63. ;
  64. ; Finished setting the rules.
  65. ;
  66. FINISH
  67.